home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / include / asm / mach-es7000 / mach_apic.h next >
C/C++ Source or Header  |  2005-10-13  |  5KB  |  208 lines

  1. #ifndef __ASM_MACH_APIC_H
  2. #define __ASM_MACH_APIC_H
  3.  
  4. extern u8 bios_cpu_apicid[];
  5.  
  6. #define xapic_phys_to_log_apicid(cpu) (bios_cpu_apicid[cpu])
  7. #define esr_disable (1)
  8.  
  9. static inline int apic_id_registered(void)
  10. {
  11.             return (1);
  12. }
  13.  
  14. static inline cpumask_t target_cpus(void)
  15. #if defined CONFIG_ES7000_CLUSTERED_APIC
  16.     return CPU_MASK_ALL;
  17. #else
  18.     return cpumask_of_cpu(smp_processor_id());
  19. #endif
  20. }
  21. #define TARGET_CPUS    (target_cpus())
  22.  
  23. #if defined CONFIG_ES7000_CLUSTERED_APIC
  24. #define APIC_DFR_VALUE        (APIC_DFR_CLUSTER)
  25. #define INT_DELIVERY_MODE    (dest_LowestPrio)
  26. #define INT_DEST_MODE        (1)    /* logical delivery broadcast to all procs */
  27. #define NO_BALANCE_IRQ         (1)
  28. #undef  WAKE_SECONDARY_VIA_INIT
  29. #define WAKE_SECONDARY_VIA_MIP
  30. #else
  31. #define APIC_DFR_VALUE        (APIC_DFR_FLAT)
  32. #define INT_DELIVERY_MODE    (dest_Fixed)
  33. #define INT_DEST_MODE        (0)    /* phys delivery to target procs */
  34. #define NO_BALANCE_IRQ         (0)
  35. #undef  APIC_DEST_LOGICAL
  36. #define APIC_DEST_LOGICAL    0x0
  37. #define WAKE_SECONDARY_VIA_INIT
  38. #endif
  39.  
  40. #define NO_IOAPIC_CHECK (1)
  41.  
  42. static inline unsigned long check_apicid_used(physid_mask_t bitmap, int apicid)
  43.     return 0;
  44. static inline unsigned long check_apicid_present(int bit) 
  45. {
  46.     return physid_isset(bit, phys_cpu_present_map);
  47. }
  48.  
  49. #define apicid_cluster(apicid) (apicid & 0xF0)
  50.  
  51. static inline unsigned long calculate_ldr(int cpu)
  52. {
  53.     unsigned long id;
  54.     id = xapic_phys_to_log_apicid(cpu);
  55.     return (SET_APIC_LOGICAL_ID(id));
  56. }
  57.  
  58. /*
  59.  * Set up the logical destination ID.
  60.  *
  61.  * Intel recommends to set DFR, LdR and TPR before enabling
  62.  * an APIC.  See e.g. "AP-388 82489DX User's Manual" (Intel
  63.  * document number 292116).  So here it goes...
  64.  */
  65. static inline void init_apic_ldr(void)
  66. {
  67.     unsigned long val;
  68.     int cpu = smp_processor_id();
  69.  
  70.     apic_write_around(APIC_DFR, APIC_DFR_VALUE);
  71.     val = calculate_ldr(cpu);
  72.     apic_write_around(APIC_LDR, val);
  73. }
  74.  
  75. extern void es7000_sw_apic(void);
  76. static inline void enable_apic_mode(void)
  77. {
  78.     es7000_sw_apic();
  79.     return;
  80. }
  81.  
  82. extern int apic_version [MAX_APICS];
  83. static inline void clustered_apic_check(void)
  84. {
  85.     int apic = bios_cpu_apicid[smp_processor_id()];
  86.     printk("Enabling APIC mode:  %s.  Using %d I/O APICs, target cpus %lx\n",
  87.         (apic_version[apic] == 0x14) ? 
  88.         "Physical Cluster" : "Logical Cluster", nr_ioapics, cpus_addr(TARGET_CPUS)[0]);
  89. }
  90.  
  91. static inline int multi_timer_check(int apic, int irq)
  92. {
  93.     return 0;
  94. }
  95.  
  96. static inline int apicid_to_node(int logical_apicid)
  97. {
  98.     return 0;
  99. }
  100.  
  101.  
  102. static inline int cpu_present_to_apicid(int mps_cpu)
  103. {
  104.     if (!mps_cpu)
  105.         return boot_cpu_physical_apicid;
  106.     else if (mps_cpu < NR_CPUS)
  107.         return (int) bios_cpu_apicid[mps_cpu];
  108.     else
  109.         return BAD_APICID;
  110. }
  111.  
  112. static inline physid_mask_t apicid_to_cpu_present(int phys_apicid)
  113. {
  114.     static int id = 0;
  115.     physid_mask_t mask;
  116.     mask = physid_mask_of_physid(id);
  117.     ++id;
  118.     return mask;
  119. }
  120.  
  121. extern u8 cpu_2_logical_apicid[];
  122. /* Mapping from cpu number to logical apicid */
  123. static inline int cpu_to_logical_apicid(int cpu)
  124. {
  125.        if (cpu >= NR_CPUS)
  126.            return BAD_APICID;
  127.        return (int)cpu_2_logical_apicid[cpu];
  128. }
  129.  
  130. static inline int mpc_apic_id(struct mpc_config_processor *m, struct mpc_config_translation *unused)
  131. {
  132.     printk("Processor #%d %ld:%ld APIC version %d\n",
  133.             m->mpc_apicid,
  134.             (m->mpc_cpufeature & CPU_FAMILY_MASK) >> 8,
  135.             (m->mpc_cpufeature & CPU_MODEL_MASK) >> 4,
  136.             m->mpc_apicver);
  137.     return (m->mpc_apicid);
  138. }
  139.  
  140. static inline physid_mask_t ioapic_phys_id_map(physid_mask_t phys_map)
  141. {
  142.     /* For clustered we don't have a good way to do this yet - hack */
  143.     return physids_promote(0xff);
  144. }
  145.  
  146.  
  147. static inline void setup_portio_remap(void)
  148. {
  149. }
  150.  
  151. extern unsigned int boot_cpu_physical_apicid;
  152. static inline int check_phys_apicid_present(int cpu_physical_apicid)
  153. {
  154.     boot_cpu_physical_apicid = GET_APIC_ID(apic_read(APIC_ID));
  155.     return (1);
  156. }
  157.  
  158. static inline unsigned int cpu_mask_to_apicid(cpumask_t cpumask)
  159. {
  160.     int num_bits_set;
  161.     int cpus_found = 0;
  162.     int cpu;
  163.     int apicid;    
  164.  
  165.     num_bits_set = cpus_weight(cpumask);
  166.     /* Return id to all */
  167.     if (num_bits_set == NR_CPUS)
  168. #if defined CONFIG_ES7000_CLUSTERED_APIC
  169.         return 0xFF;
  170. #else
  171.         return cpu_to_logical_apicid(0);
  172. #endif
  173.     /* 
  174.      * The cpus in the mask must all be on the apic cluster.  If are not 
  175.      * on the same apicid cluster return default value of TARGET_CPUS. 
  176.      */
  177.     cpu = first_cpu(cpumask);
  178.     apicid = cpu_to_logical_apicid(cpu);
  179.     while (cpus_found < num_bits_set) {
  180.         if (cpu_isset(cpu, cpumask)) {
  181.             int new_apicid = cpu_to_logical_apicid(cpu);
  182.             if (apicid_cluster(apicid) != 
  183.                     apicid_cluster(new_apicid)){
  184.                 printk ("%s: Not a valid mask!\n",__FUNCTION__);
  185. #if defined CONFIG_ES7000_CLUSTERED_APIC
  186.                 return 0xFF;
  187. #else
  188.                 return cpu_to_logical_apicid(0);
  189. #endif
  190.             }
  191.             apicid = new_apicid;
  192.             cpus_found++;
  193.         }
  194.         cpu++;
  195.     }
  196.     return apicid;
  197. }
  198.  
  199. static inline u32 phys_pkg_id(u32 cpuid_apic, int index_msb)
  200. {
  201.     return cpuid_apic >> index_msb;
  202. }
  203.  
  204. #endif /* __ASM_MACH_APIC_H */
  205.